Skip to main content

NAME

WWW::SwaggerClient::Role - a Moose role for the Estuary API

This is the API for the Estuary application.

VERSION

Automatically generated by the Swagger Codegen project:

  • API version: 0.0.0
  • Package version: 1.0.0
  • Build package: io.swagger.codegen.languages.PerlClientCodegen For more information, please visit https://docs.estuary.tech/feedback

A note on Moose

This role is the only component of the library that uses Moose. See WWW::SwaggerClient::ApiFactory for non-Moosey usage.

SYNOPSIS

The Perl Swagger Codegen project builds a library of Perl modules to interact with a web service defined by a OpenAPI Specification. See below for how to build the library.

This module provides an interface to the generated library. All the classes, objects, and methods (well, not quite *all*, see below) are flattened into this role.

    package MyApp;
use Moose;
with 'WWW::SwaggerClient::Role';

package main;

my $api = MyApp->new({ tokens => $tokens });

my $pet = $api->get_pet_by_id(pet_id => $pet_id);

Structure of the library

The library consists of a set of API classes, one for each endpoint. These APIs implement the method calls available on each endpoint.

Additionally, there is a set of "object" classes, which represent the objects returned by and sent to the methods on the endpoints.

An API factory class is provided, which builds instances of each endpoint API.

This Moose role flattens all the methods from the endpoint APIs onto the consuming class. It also provides methods to retrieve the endpoint API objects, and the API factory object, should you need it.

For documentation of all these methods, see AUTOMATIC DOCUMENTATION below.

Configuring authentication

In the normal case, the OpenAPI Spec will describe what parameters are required and where to put them. You just need to supply the tokens.

my $tokens = {
# basic
username => $username,
password => $password,

# oauth
access_token => $oauth_token,

# keys
$some_key => { token => $token,
prefix => $prefix,
in => $in, # 'head||query',
},

$another => { token => $token,
prefix => $prefix,
in => $in, # 'head||query',
},
...,

};

my $api = MyApp->new({ tokens => $tokens });

Note these are all optional, as are prefix and in, and depend on the API you are accessing. Usually prefix and in will be determined by the code generator from the spec and you will not need to set them at run time. If not, in will default to 'head' and prefix to the empty string.

The tokens will be placed in a L<WWW::SwaggerClient::Configuration> instance as follows, but you don't need to know about this.

  • $cfg->{username}

    String. The username for basic auth.

  • $cfg->{password}

    String. The password for basic auth.

  • $cfg->{api_key}

    Hashref. Keyed on the name of each key (there can be multiple tokens).

          $cfg->{api_key} = {
    secretKey => 'aaaabbbbccccdddd',
    anotherKey => '1111222233334444',
    };
  • $cfg->{api_key_prefix}

    Hashref. Keyed on the name of each key (there can be multiple tokens). Note not all api keys require a prefix.

          $cfg->{api_key_prefix} = {
    secretKey => 'string',
    anotherKey => 'same or some other string',
    };
  • $cfg->{access_token}

    String. The OAuth access token.

METHODS

base_url

The generated code has the base_url already set as a default value. This method returns the current value of base_url.

api_factory

Returns an API factory object. You probably won't need to call this directly.

    $self->api_factory('Pet'); # returns a WWW::SwaggerClient::PetApi instance

$self->pet_api; # the same

MISSING METHODS

Most of the methods on the API are delegated to individual endpoint API objects (e.g. Pet API, Store API, User API etc). Where different endpoint APIs use the same method name (e.g. new()), these methods can't be delegated. So you need to call $api->pet_api->new().

In principle, every API is susceptible to the presence of a few, random, undelegatable method names. In practice, because of the way method names are constructed, it's unlikely in general that any methods will be undelegatable, except for:

    new()
class_documentation()
method_documentation()

To call these methods, you need to get a handle on the relevant object, either by calling $api->foo_api or by retrieving an object, e.g. $api->get_pet_by_id(pet_id => $pet_id). They are class methods, so you could also call them on class names.

BUILDING YOUR LIBRARY

See the homepage https://github.com/swagger-api/swagger-codegen for full details. But briefly, clone the git repository, build the codegen codebase, set up your build config file, then run the API build script. You will need git, Java 7 or 8 and Apache maven 3.0.3 or better already installed.

The config file should specify the project name for the generated library:

    {"moduleName":"WWW::MyProjectName"}

Your library files will be built under WWW::MyProjectName.

      $ git clone https://github.com/swagger-api/swagger-codegen.git
$ cd swagger-codegen
$ mvn package
$ java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
-i [URL or file path to JSON swagger API spec] \
-l perl \
-c /path/to/config/file.json \
-o /path/to/output/folder

Bang, all done. Run the autodoc script in the bin directory to see the API you just built.

AUTOMATIC DOCUMENTATION

You can print out a summary of the generated API by running the included autodoc script in the bin directory of your generated library. A few output formats are supported:

      Usage: autodoc [OPTION]

-w wide format (default)
-n narrow format
-p POD format
-H HTML format
-m Markdown format
-h print this help message
-c your application class

The -c option allows you to load and inspect your own application. A dummy namespace is used if you don't supply your own class.

DOCUMENTATION FROM THE OpenAPI Spec

Additional documentation for each class and method may be provided by the Swagger spec. If so, this is available via the class_documentation() and method_documentation() methods on each generated object class, and the method_documentation() method on the endpoint API classes:

    my $cmdoc = $api->pet_api->method_documentation->{$method_name};

my $odoc = $api->get_pet_by_id->(pet_id => $pet_id)->class_documentation;
my $omdoc = $api->get_pet_by_id->(pet_id => $pet_id)->method_documentation->{method_name};

Each of these calls returns a hashref with various useful pieces of information.

LOAD THE MODULES

To load the API packages:

use WWW::SwaggerClient::AdminApi;
use WWW::SwaggerClient::AutoretrieveApi;
use WWW::SwaggerClient::CollectionsApi;
use WWW::SwaggerClient::ContentApi;
use WWW::SwaggerClient::DealsApi;
use WWW::SwaggerClient::DefaultApi;
use WWW::SwaggerClient::MetricsApi;
use WWW::SwaggerClient::MinerApi;
use WWW::SwaggerClient::NetApi;
use WWW::SwaggerClient::PeeringApi;
use WWW::SwaggerClient::PeersApi;
use WWW::SwaggerClient::PinningApi;
use WWW::SwaggerClient::PublicApi;
use WWW::SwaggerClient::UserApi;

To load the models:

use WWW::SwaggerClient::Object::CollectionsCollection;
use WWW::SwaggerClient::Object::MainCreateCollectionBody;
use WWW::SwaggerClient::Object::MainDeleteContentFromCollectionBody;
use WWW::SwaggerClient::Object::MainEstimateDealBody;
use WWW::SwaggerClient::Object::MainGetApiKeysResp;
use WWW::SwaggerClient::Object::MainImportDealBody;
use WWW::SwaggerClient::Object::MainUserStatsResponse;
use WWW::SwaggerClient::Object::UtilContentAddIpfsBody;
use WWW::SwaggerClient::Object::UtilContentAddResponse;
use WWW::SwaggerClient::Object::UtilContentCreateBody;
use WWW::SwaggerClient::Object::UtilHttpError;

GETTING STARTED

Put the Perl SDK under the 'lib' folder in your project directory, then run the following

#!/usr/bin/perl
use lib 'lib';
use strict;
use warnings;
# load the API package
use WWW::SwaggerClient::AdminApi;
use WWW::SwaggerClient::AutoretrieveApi;
use WWW::SwaggerClient::CollectionsApi;
use WWW::SwaggerClient::ContentApi;
use WWW::SwaggerClient::DealsApi;
use WWW::SwaggerClient::DefaultApi;
use WWW::SwaggerClient::MetricsApi;
use WWW::SwaggerClient::MinerApi;
use WWW::SwaggerClient::NetApi;
use WWW::SwaggerClient::PeeringApi;
use WWW::SwaggerClient::PeersApi;
use WWW::SwaggerClient::PinningApi;
use WWW::SwaggerClient::PublicApi;
use WWW::SwaggerClient::UserApi;

# load the models
use WWW::SwaggerClient::Object::CollectionsCollection;
use WWW::SwaggerClient::Object::MainCreateCollectionBody;
use WWW::SwaggerClient::Object::MainDeleteContentFromCollectionBody;
use WWW::SwaggerClient::Object::MainEstimateDealBody;
use WWW::SwaggerClient::Object::MainGetApiKeysResp;
use WWW::SwaggerClient::Object::MainImportDealBody;
use WWW::SwaggerClient::Object::MainUserStatsResponse;
use WWW::SwaggerClient::Object::UtilContentAddIpfsBody;
use WWW::SwaggerClient::Object::UtilContentAddResponse;
use WWW::SwaggerClient::Object::UtilContentCreateBody;
use WWW::SwaggerClient::Object::UtilHttpError;

# for displaying the API response data
use Data::Dumper;
use WWW::SwaggerClient::;

my $api_instance = WWW::SwaggerClient::->new(

# Configure API key authorization: bearerAuth
api_key => {'Authorization' => 'YOUR_API_KEY'},
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#api_key_prefix => {'Authorization' => 'Bearer'},
);

my $body = [WWW::SwaggerClient::Object::ARRAY[string]->new()]; # ARRAY[string] | Peer ids

eval {
$api_instance->admin_peering_peers_delete(body => $body);
};
if ($@) {
warn "Exception when calling AdminApi->admin_peering_peers_delete: $@\n";
}

DOCUMENTATION FOR API ENDPOINTS

All URIs are relative to https://api.estuary.tech

ClassMethodHTTP requestDescription
AdminApiadmin_peering_peers_deleteDELETE /admin/peering/peersRemove peers on Peering Service
AdminApiadmin_peering_peers_getGET /admin/peering/peersList all Peering peers
AdminApiadmin_peering_peers_postPOST /admin/peering/peersAdd peers on Peering Service
AdminApiadmin_peering_start_postPOST /admin/peering/startStart Peering
AdminApiadmin_peering_status_getGET /admin/peering/statusCheck Peering Status
AdminApiadmin_peering_stop_postPOST /admin/peering/stopStop Peering
AdminApiadmin_system_config_getGET /admin/system/configGet systems(estuary/shuttle) config
AdminApiadmin_users_getGET /admin/usersGet all users
AutoretrieveApiadmin_autoretrieve_init_postPOST /admin/autoretrieve/initRegister autoretrieve server
AutoretrieveApiadmin_autoretrieve_list_getGET /admin/autoretrieve/listList autoretrieve servers
AutoretrieveApiautoretrieve_heartbeat_postPOST /autoretrieve/heartbeatMarks autoretrieve server as up
CollectionsApicollections_coluuid_commit_postPOST /collections/{coluuid}/commitProduce a CID of the collection contents
CollectionsApicollections_coluuid_contents_deleteDELETE /collections/{coluuid}/contentsDeletes a content from a collection
CollectionsApicollections_coluuid_deleteDELETE /collections/{coluuid}Deletes a collection
CollectionsApicollections_coluuid_getGET /collections/{coluuid}Get contents in a collection
CollectionsApicollections_coluuid_postPOST /collections/{coluuid}Add contents to a collection
CollectionsApicollections_fs_add_postPOST /collections/fs/addAdd a file to a collection
CollectionsApicollections_getGET /collections/List all collections
CollectionsApicollections_postPOST /collections/Create a new collection
ContentApicontent_add_car_postPOST /content/add-carAdd Car object
ContentApicontent_add_ipfs_postPOST /content/add-ipfsAdd IPFS object
ContentApicontent_add_postPOST /content/addAdd new content
ContentApicontent_aggregated_content_getGET /content/aggregated/{content}Get aggregated content stats
ContentApicontent_all_deals_getGET /content/all-dealsGet all deals for a user
ContentApicontent_bw_usage_content_getGET /content/bw-usage/{content}Get content bandwidth
ContentApicontent_create_postPOST /content/createAdd a new content
ContentApicontent_deals_getGET /content/dealsContent with deals
ContentApicontent_ensure_replication_datacid_getGET /content/ensure-replication/{datacid}Ensure Replication
ContentApicontent_failures_content_getGET /content/failures/{content}List all failures for a content
ContentApicontent_id_getGET /content/{id}Content
ContentApicontent_importdeal_postPOST /content/importdealImport a deal
ContentApicontent_list_getGET /content/listList all pinned content
ContentApicontent_read_cont_getGET /content/read/{cont}Read content
ContentApicontent_staging_zones_getGET /content/staging-zonesGet staging zone for user
ContentApicontent_stats_getGET /content/statsGet content statistics
ContentApicontent_status_id_getGET /content/status/{id}Content Status
DealsApideal_estimate_postPOST /deal/estimateEstimate the cost of a deal
DealsApideal_info_dealid_getGET /deal/info/{dealid}Get Deal Info
DealsApideal_proposal_propcid_getGET /deal/proposal/{propcid}Get Proposal
DealsApideal_query_miner_getGET /deal/query/{miner}Query Ask
DealsApideal_status_by_proposal_propcid_getGET /deal/status-by-proposal/{propcid}Get Deal Status by PropCid
DealsApideal_status_miner_propcid_getGET /deal/status/{miner}/{propcid}Deal Status
DealsApideal_transfer_in_progress_getGET /deal/transfer/in-progressTransfer In Progress
DealsApideals_failures_getGET /deals/failuresGet storage failures for user
DealsApideals_make_miner_postPOST /deals/make/{miner}Make Deal
DealsApideals_status_deal_getGET /deals/status/{deal}Get Deal Status
DealsApipublic_deals_failures_getGET /public/deals/failuresGet storage failures
DealsApipublic_miners_storage_query_miner_getGET /public/miners/storage/query/{miner}Query Ask
DefaultApideal_transfer_status_postPOST /deal/transfer/status
MetricsApipublic_metrics_deals_on_chain_getGET /public/metrics/deals-on-chainGet deal metrics
MinerApipublic_miners_deals_miner_getGET /public/miners/deals/{miner}Get all miners deals
MinerApipublic_miners_stats_miner_getGET /public/miners/stats/{miner}Get miner stats
NetApinet_addrs_getGET /net/addrsNet Addrs
NetApipublic_miners_failures_miner_getGET /public/miners/failures/{miner}Get all miners
NetApipublic_miners_getGET /public/minersGet all miners
NetApipublic_net_addrs_getGET /public/net/addrsNet Addrs
NetApipublic_net_peers_getGET /public/net/peersNet Peers
PeeringApiadmin_peering_peers_deleteDELETE /admin/peering/peersRemove peers on Peering Service
PeeringApiadmin_peering_peers_getGET /admin/peering/peersList all Peering peers
PeeringApiadmin_peering_peers_postPOST /admin/peering/peersAdd peers on Peering Service
PeeringApiadmin_peering_start_postPOST /admin/peering/startStart Peering
PeeringApiadmin_peering_status_getGET /admin/peering/statusCheck Peering Status
PeeringApiadmin_peering_stop_postPOST /admin/peering/stopStop Peering
PeersApiadmin_peering_peers_deleteDELETE /admin/peering/peersRemove peers on Peering Service
PeersApiadmin_peering_peers_getGET /admin/peering/peersList all Peering peers
PeersApiadmin_peering_peers_postPOST /admin/peering/peersAdd peers on Peering Service
PeersApiadmin_peering_start_postPOST /admin/peering/startStart Peering
PeersApiadmin_peering_status_getGET /admin/peering/statusCheck Peering Status
PeersApiadmin_peering_stop_postPOST /admin/peering/stopStop Peering
PinningApipinning_pins_getGET /pinning/pinsList all pin status objects
PinningApipinning_pins_pinid_deleteDELETE /pinning/pins/{pinid}Delete a pinned object
PinningApipinning_pins_pinid_getGET /pinning/pins/{pinid}Get a pin status object
PinningApipinning_pins_pinid_postPOST /pinning/pins/{pinid}Replace a pinned object
PinningApipinning_pins_postPOST /pinning/pinsAdd and pin object
PublicApipublic_by_cid_cid_getGET /public/by-cid/{cid}Get Content by Cid
PublicApipublic_info_getGET /public/infoGet public node info
PublicApipublic_metrics_deals_on_chain_getGET /public/metrics/deals-on-chainGet deal metrics
PublicApipublic_miners_deals_miner_getGET /public/miners/deals/{miner}Get all miners deals
PublicApipublic_miners_failures_miner_getGET /public/miners/failures/{miner}Get all miners
PublicApipublic_miners_getGET /public/minersGet all miners
PublicApipublic_miners_stats_miner_getGET /public/miners/stats/{miner}Get miner stats
PublicApipublic_net_addrs_getGET /public/net/addrsNet Addrs
PublicApipublic_net_peers_getGET /public/net/peersNet Peers
PublicApipublic_stats_getGET /public/statsPublic stats
UserApiuser_api_keys_getGET /user/api-keysGet API keys for a user
UserApiuser_api_keys_key_deleteDELETE /user/api-keys/{key}Revoke a User API Key.
UserApiuser_api_keys_postPOST /user/api-keysCreate API keys for a user
UserApiuser_export_getGET /user/exportExport user data
UserApiuser_stats_getGET /user/statsCreate API keys for a user

DOCUMENTATION FOR MODELS

DOCUMENTATION FOR AUTHORIZATION

bearerAuth

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header